home *** CD-ROM | disk | FTP | other *** search
/ Atari Mega Archive 1 / Atari Mega Archive - Volume 1.iso / graphics / c3d2raw.zoo / cad3d2raw.h < prev    next >
C/C++ Source or Header  |  1994-03-14  |  908b  |  30 lines

  1. /*
  2.  * cad3d2raw - Atari CAD-3D 2.0 to RAW triangles
  3.  * $Id: cad3d2raw.h,v 1.2 1994/03/14 15:25:53 herborth Exp $
  4.  *
  5.  * Chris Herborth
  6.  * March 5/94
  7.  *
  8.  * Here are the function prototypes for cad3d2pov.c; also, handy macros.
  9.  *
  10.  * $Log: cad3d2raw.h,v $
  11.  * Revision 1.2  1994/03/14  15:25:53  herborth
  12.  * Fixed a bozo problem; the version id string wasn't set properly.
  13.  *
  14.  * Revision 1.1  1994/03/14  15:23:47  herborth
  15.  * Initial revision
  16.  *
  17.  */
  18.  
  19. const char *version_info = "cad3d2raw\n"
  20.                            "$Id: cad3d2raw.h,v 1.2 1994/03/14 15:25:53 herborth Exp $\n"
  21.                            "Copyright (c) 1994 Chris Herborth,\n"
  22.                            "all rights reserved\n"
  23.                            "(cherborth@semprini.waterloo-rdp.on.ca)";
  24.  
  25. const char *output_extension = "raw";
  26.  
  27. void usage( void );
  28. void version( void );
  29. char *make_outfile( const char *infile, const char *outext );
  30.